home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
program
/
dlibs12.arc
/
H.ARC
/
AR.H
next >
Wrap
C/C++ Source or Header
|
1988-09-11
|
425b
|
23 lines
/*
* Archive header format
*
* Archives must start with a word containing the magic number
* 0xff65 or 0xff66, with 0xff66 being reserved for a random-
* access object module library.
*/
#define ARMAG1 0xff65
#define ARMAG2 0xff66
struct ar_hdr {
char ar_name[14];
long ar_date;
char ar_uid;
char ar_gid;
int ar_mode;
long ar_size;
int ar_fill;
};
#define ARHSZ (sizeof (struct ar_hdr))